home *** CD-ROM | disk | FTP | other *** search
- /* bdosptr.c --- p 554 */
- #include <stdio.h >
- #include <stdlib.h>
- #include <dos.h>
- /* DOS function to change current directory */
- #define DOS_CHDIR 0x3b
- main()
- {
- char newdir[80];
- printf("Change current directory to: ");
- gets(newdir);
- /* Nothing needs to be specified for AL. Use a ).*/
- bdosptr(DOS_CHDIR, newdir, 0);
- /* Check current directory with the DOS 'dir' command */
- printf("Current directory is: ");
- system("dir/w");
- }